home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / prn_page.cpp < prev    next >
C/C++ Source or Header  |  1994-10-10  |  822b  |  25 lines

  1. #include "prn_page.h"
  2.  
  3. PAGE_LAYOUT::PAGE_LAYOUT(int p_band_top, int p_band_bottom, int t_band_top,
  4.     int t_band_bottom, int r_band_top, int r_band_bottom,
  5.     ADD_LIST* p_top_info, ADD_LIST* p_bottom_info, ADD_LIST* t_top_info,
  6.     ADD_LIST* t_bottom_info, ADD_LIST* r_top_info,
  7.     ADD_LIST* r_bottom_info,
  8.     RECORD_LAYOUT* rec)
  9.     {
  10.     page_band_top = p_band_top;
  11.     page_band_bottom = p_band_bottom;
  12.     table_band_top = t_band_top;
  13.     table_band_bottom = t_band_bottom;
  14.     record_band_top = r_band_top;
  15.     record_band_bottom = r_band_bottom;
  16.     pg_top_info = p_top_info;
  17.     pg_bottom_info = p_bottom_info;
  18.     tb_top_info = t_top_info;
  19.     tb_bottom_info = t_bottom_info;
  20.     rc_top_info = r_top_info;
  21.     rc_bottom_info = r_bottom_info;
  22.     record = rec;
  23.     }
  24. //////////////////////////////////
  25.